home *** CD-ROM | disk | FTP | other *** search
/ Amiga Format CD 49 / Amiga Format CD49 (2000-01-17)(Future Publishing)(GB)(Track 1 of 3)[!][issue 2000-02].iso / -websites- / wirenet / files / thor25_arexx.lha / Examples / FindDupes.br < prev    next >
Text File  |  1995-09-06  |  514b  |  32 lines

  1. /*  FindDupes.br 
  2.  *
  3.  *  Stub to use FINDDUPBRMSG
  4.  *
  5.  */
  6.     parse arg arguments
  7.  
  8.     if ~show('p', 'BBSREAD') then do
  9.         address command
  10.             "run >nil: `GetEnv THOR/THORPath`bin/LoadBBSRead"
  11.             "WaitForPort BBSREAD"
  12.     end
  13.  
  14.     address BBSREAD
  15.  
  16.     if arguments = '' then 
  17.     do
  18.         GETCOMMANDINFO FINDDUPBRMSG TEMP
  19.  
  20.         say 'FindDupes.br 3.1 (28.09.94)'
  21.         say 'Lets you use the FINDDUPBRMSG arexx command from CLI.'
  22.         say 'Template:' TEMP
  23.         exit
  24.     end
  25.  
  26.     FINDDUPBRMSG arguments
  27.     if(rc ~= 0) then
  28.     do
  29.         say BBSREAD.LASTERROR
  30.         exit
  31.     end
  32.